home *** CD-ROM | disk | FTP | other *** search
Wrap
<?xml version="1.0" encoding="utf-8"?> <!--AviSynth plugin description version 1.1--> <plugin name="MSmooth"> <description /> <filters> <filter name="MSmooth" category="Spatial Smoothers" helpfile="msmooth" type="clip"> <description>This filter is effective at removing mosquito noise as well as effectively smoothing flat areas in anime. </description> <colorspaces> <colorspace>yv12</colorspace> <colorspace>rgb</colorspace> </colorspaces> <parameters> <parameter name="clip" type="clip" default="" max="0" min="0" step="0" optional="True" paramList="False"> <description /> <items /> </parameter> <parameter name="threshold" type="int" default="15" max="255" min="0" step="0" optional="True" paramList="False"> <description>This parameter determines what is detected as detail and thus preserved. To see what detail areas will be preserved, use the 'mask' parameter.</description> <items /> </parameter> <parameter name="Strength" type="int" default="3" max="25" min="0" step="0" optional="True" paramList="False"> <description>This is the number of iterations of a 3x3 averaging blur to be performed on the areas to be smoothed. It is applied only to the non-detail areas as determined by the 'threshold' parameter, and smoothing does not cross image detail. The filter becomes much slower as the strength is raised.</description> <items /> </parameter> <parameter name="highq" type="bool" default="true" max="0" min="0" step="0" optional="True" paramList="False"> <description>When set to true, a higher quality but slightly slower detail detection algorithm is used.</description> <items /> </parameter> <parameter name="mask" type="bool" default="false" max="0" min="0" step="0" optional="True" paramList="False"> <description>When set to true, the areas to be preserved are shown. Use this to set the level of detail to be preserved.</description> <items /> </parameter> <parameter name="show" type="bool" default="false" max="0" min="0" step="0" optional="True" paramList="False"> <description>This parameter overlays debug output on the output frame. Currently, only the filter version is output.</description> <items /> </parameter> <parameter name="debug" type="bool" default="false" max="0" min="0" step="0" optional="True" paramList="False"> <description>This parameter enables debug output to the DebugView utility. Currently, only the filter version is output.</description> <items /> </parameter> </parameters> </filter> </filters> </plugin>